home *** CD-ROM | disk | FTP | other *** search
/ Kit PC World De Ampliacion De Windows 95 / Kit PC World de ampliacion de Windows 95.iso / lotus / lotus025.dsk / PAGESET.LSS < prev    next >
Text File  |  1995-07-31  |  621b  |  20 lines

  1.     REM This template illustrates changing margins and
  2.     REM page layout in Word Pro.
  3.     REM
  4.     REM Measurements are in twips.  There are 1440 twips
  5.     REM per inch.
  6.     
  7.     Const inch = 1440    
  8.     
  9.     .Page.Layout.RightPage.Width = 11 * inch
  10.     .Page.Layout.RightPage.Height = 8.5 * inch
  11.     .Page.Layout.RightPage.LandscapeMode = True
  12.     
  13.     REM Set margins to 1/2 inch on all sides    
  14.     .Page.Layout.RightPage.MarginTop = .5 * inch
  15.     .Page.Layout.RightPage.MarginLeft = .5 * inch
  16.     .Page.Layout.RightPage.MarginRight = .5 * inch
  17.     .Page.Layout.RightPage.MarginBottom = .5 * inch
  18.     
  19.     .Page.Layout.RightPage.Header.MarginTop = .05 * inch
  20.